home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Science / RLaB / rlib / int2str.r < prev    next >
Text File  |  1994-04-25  |  373b  |  20 lines

  1. //-------------------------------------------------------------------
  2. //
  3. // int2str
  4. //
  5. // Syntax: s = int2str(n)
  6. //
  7. // This routine converts the integer n to a string which
  8. // is returned.
  9. //
  10. // Original Author: Jeff Layton
  11. //-------------------------------------------------------------------
  12.  
  13. int2str = function(n)
  14. {
  15.    local(s);
  16.  
  17.    sprintf(s,"%.0f",n);
  18.    return s;
  19. };
  20.